home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / COMMS / C101.ZIP / UUPC11XS.ZIP / MAIL / SYSALIAS.H < prev   
C/C++ Source or Header  |  1992-12-03  |  2KB  |  42 lines

  1. /*--------------------------------------------------------------------*/
  2. /*    S y s A l i a s . H                                             */
  3. /*                                                                    */
  4. /*    System wide alias support for UUPC/extended                     */
  5. /*--------------------------------------------------------------------*/
  6.  
  7. /*--------------------------------------------------------------------*/
  8. /*    Changes Copyright (c) 1990-1992 by Kendra Electronic            */
  9. /*    Wonderworks.                                                    */
  10. /*                                                                    */
  11. /*    All rights reserved except those explicitly granted by the      */
  12. /*    UUPC/extended license agreement.                                */
  13. /*--------------------------------------------------------------------*/
  14.  
  15. /*--------------------------------------------------------------------*/
  16. /*                          RCS Information                           */
  17. /*--------------------------------------------------------------------*/
  18.  
  19. /*
  20.  *    $Id: SYSALIAS.H 1.1 1992/12/04 01:03:49 ahd Exp $
  21.  *
  22.  *    $Log: SYSALIAS.H $
  23.  * Revision 1.1  1992/12/04  01:03:49  ahd
  24.  * Initial revision
  25.  *
  26.  */
  27.  
  28. /*--------------------------------------------------------------------*/
  29. /*    System alias table; includes name of alias, and start and       */
  30. /*    end position of alias data in the system alias file             */
  31. /*--------------------------------------------------------------------*/
  32.  
  33. typedef struct _ALIASTABLE {
  34.       char *alias;
  35.       long start;
  36.       long end;
  37.       } ALIASTABLE;
  38.  
  39. extern char *SysAliases;      /* Name of system alias file           */
  40.  
  41. ALIASTABLE *checkalias( const char *user );
  42.